home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / top_that_pizza.swf / scripts / FComboBoxItemSymbol.as < prev    next >
Text File  |  2011-09-19  |  426b  |  16 lines

  1. function FComboBoxItemClass()
  2. {
  3.    this.init();
  4. }
  5. FComboBoxItemClass.prototype = new FSelectableItemClass();
  6. Object.registerClass("FComboBoxItemSymbol",FComboBoxItemClass);
  7. FComboBoxItemClass.prototype.setSize = function(w, h)
  8. {
  9.    var _loc1_ = this;
  10.    super.setSize(w,h);
  11.    _loc1_.highlight_mc.onRollOver = function()
  12.    {
  13.       this.controller.controller.selectionHandler(this.controller.itemNum);
  14.    };
  15. };
  16.